home *** CD-ROM | disk | FTP | other *** search
/ Tokyo Night Life Interactive / Tokyo Night Life Interactive.iso / mac / MAIN / NOZOKI_A / 00205_Script_205 < prev    next >
Text File  |  1995-06-13  |  379b  |  22 lines

  1. on startMovie
  2.     global flag
  3.     clearGlobals
  4. end startMovie
  5.  
  6. on idle
  7.     global flag
  8.     
  9.     if rollover(4) or rollover(5) then
  10.         set flag = flag + 1
  11.         if flag = 10 then
  12.             cursor 200
  13.         end if
  14.         if flag > 20 then
  15.             set flag = 0
  16.             cursor -1
  17.         end if
  18.     else
  19.         cursor -1
  20.     end if
  21. end idle
  22.